summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/impl/SimplePlaces.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/uic/ticket/api/impl/SimplePlaces.java')
-rw-r--r--src/org/uic/ticket/api/impl/SimplePlaces.java89
1 files changed, 0 insertions, 89 deletions
diff --git a/src/org/uic/ticket/api/impl/SimplePlaces.java b/src/org/uic/ticket/api/impl/SimplePlaces.java
deleted file mode 100644
index 94b2777..0000000
--- a/src/org/uic/ticket/api/impl/SimplePlaces.java
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- *
- */
-package org.uic.ticket.api.impl;
-
-import java.util.Collection;
-import java.util.LinkedHashSet;
-
-import org.uic.ticket.api.spec.IPlaces;
-
-// TODO: Auto-generated Javadoc
-/**
- * The Class SimplePlaces.
- */
-public class SimplePlaces implements IPlaces {
-
- /** The coach. */
- protected String coach;
-
- /** The place string. */
- protected String placeString;
-
- /** The place description. */
- protected String placeDescription;
-
- /** The places. */
- protected Collection<String> places = new LinkedHashSet<String>();
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IPlaces#getCoach()
- */
- public String getCoach() {
- return coach;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IPlaces#setCoach(java.lang.String)
- */
- public void setCoach(String coach) {
- this.coach = coach;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IPlaces#getPlaceString()
- */
- public String getPlaceString() {
- return placeString;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IPlaces#setPlaceString(java.lang.String)
- */
- public void setPlaceString(String placeString) {
- this.placeString = placeString;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IPlaces#getPlaceDescription()
- */
- public String getPlaceDescription() {
- return placeDescription;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IPlaces#setPlaceDescription(java.lang.String)
- */
- public void setPlaceDescription(String placeDescription) {
- this.placeDescription = placeDescription;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IPlaces#getPlaces()
- */
- public Collection<String> getPlaces() {
- return places;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IPlaces#addPlace(java.lang.String)
- */
- public void addPlace(String place) {
- this.places.add(place);
- }
-
-
-
-
-
-}